(hft_alrm): Don't return a value.
authorRichard M. Stallman <rms@gnu.org>
Fri, 4 Jun 1993 05:20:16 +0000 (05:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 4 Jun 1993 05:20:16 +0000 (05:20 +0000)
Always declare to return void.

src/hftctl.c

index 679f56245e7cc2cf7877ecb9a945bd165c9a42ae..7f6cc9194955eb0052511d4e4415000c23e1a40b 100644 (file)
@@ -114,7 +114,7 @@ static void hft_alrm(int sig);
 #else
 static GT_ACK ();
 static WR_REQ ();
-static hft_alrm ();
+static void hft_alrm ();
 #endif
 
 /*************** HFTCTL FUNCTION *******************************/
@@ -282,7 +282,7 @@ hft_alrm (sig)                  /* Function hft_alrm - handle */
   signal (SIGALRM, sav_alrm);  /* reset to previous          */
 
   if (is_ack_vtd)              /* has ack vtd arrived ?      */
-    return(0);                 /* yes, then continue         */
+    return;                    /* yes, then continue         */
   else                         /* no, then return with error */
     longjmp (hftenv, -1);